/* ------------------------------------------------------------------- Problem set #5 Implementation of network nonlinearity ------------------------------------------------------------------- */ #include "vector.hh" // Return vector which applies the function g() to every element of v // YOU WRITE vector g(vector& v); // Return vector which applies the function g'() to every element of v // YOU WRITE vector g_prime(vector& v);